home *** CD-ROM | disk | FTP | other *** search
/ Nautilus 1992 July / Nautilus-3-8 / Nautilus-3-8.bin / Tools & Utilities / Techy Stuff / Batcher / headers / events.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-01-27  |  601 b   |  24 lines

  1. #ifndef    _eventHandlers_
  2. #define    _eventHandlers_
  3.  
  4. typedef struct {
  5.     short    filterLine;
  6.     short    filterType;
  7. }    PipeInfo;
  8.  
  9. void            MainLoop( void);
  10. void            HandleEvent( void );
  11. void            HandleActivate( WindowPtr, Boolean );
  12. void            HandleUpdate( WindowPtr );
  13. void            HandleMouseDown( EventRecord *);
  14. void            HandleContentClick( WindowPtr, EventRecord * );
  15. void            HandleMenuChoice( long );
  16. void            HandleHighLevelEvent( EventRecord *);
  17. void            DoOpenChoice( void);    
  18. void            HandleFilterLineSelect( short);
  19. void            HandlePipeLineSelect( short);
  20. void            HandleSingleFilterSelect( short);
  21. void            PipeFilters(void);
  22.  
  23. #endif
  24.